home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / CURRENT / 000282_fdc@panix.com_Tue Feb 2 14:37:47 2010.msg < prev    next >
Internet Message Format  |  2020-01-01  |  1KB

  1. Path: reader2.panix.com!panix!not-for-mail
  2. From: Frank da Cruz <fdc@panix.com>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: Can Kermit do raw TCP connection?
  5. Date: Tue, 2 Feb 2010 19:37:29 +0000 (UTC)
  6. Organization: PANIX Public Access Internet and UNIX, NYC
  7. Lines: 18
  8. Message-ID: <slrnhmgvnp.5s4.fdc@panix3.panix.com>
  9. References: <hk9n8d$2q1$1@reader2.panix.com>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: panix3.panix.com
  12. X-Trace: reader2.panix.com 1265139449 15760 166.84.1.3 (2 Feb 2010 19:37:29 GMT)
  13. X-Complaints-To: abuse@panix.com
  14. NNTP-Posting-Date: Tue, 2 Feb 2010 19:37:29 +0000 (UTC)
  15. User-Agent: slrn/0.9.8.0 (NetBSD)
  16. Xref: panix comp.protocols.kermit.misc:15885
  17.  
  18. On 2010-02-02, Grant Edwards <invalid@invalid.invalid> wrote:
  19. : Is it possible to connect to a raw TCP port? There's no telnet
  20. : or rlogin protocol server -- it's just like a serial port.
  21. :
  22. : I've been reading through Kermit docs and FAQs, and it seems
  23. : that Kermit can't connection using a raw TCP connection -- that
  24. : it can only using Telnet, Rlogin, or some other
  25. : application-layer potocol.
  26. :
  27. : Am I missing an option somewhere?
  28. :
  29. Try this:
  30.  
  31.   set host <host-name-or-address> <port-name-or-number> /raw-socket
  32.  
  33. If you have any problems with it, let me know.
  34.  
  35. - Frank